home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
dskut
/
lk_df.zip
/
NUMFLOPY.C
< prev
next >
Wrap
C/C++ Source or Header
|
1993-02-23
|
504b
|
20 lines
#include <dos.h>
//===========================================================================
//
// int number_floppy ( void )
//
//===========================================================================
unsigned short number_floppy ( void )
{
union REGS regs;
int86 (0x11, ®s, ®s);
return( ((regs.x.ax & 0xc0) >> 6) + 1 );
// return ((regs.x.ax >> 6 & 3) + 1);
}
//===========================================================================